home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / binutils.7 / binutils / binutils-2.7 / gas / testsuite / gasp / pl1.asm < prev    next >
Encoding:
Assembly Source File  |  1996-07-04  |  142 b   |  21 lines

  1.     
  2.     .ALTERNATE
  3.  
  4. alloc     MACRO val1,val2
  5.     DB    val1
  6.     DB     val2
  7.     ENDM
  8.  
  9.     alloc    "that's" 'show biz'
  10.     alloc    0,1
  11.     alloc    0 1
  12.     alloc    0    1
  13.     alloc    ,1
  14.  
  15.  
  16.     
  17.  
  18.  
  19.  
  20.  
  21.